summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMoonlacer <79172044+Moonlacer@users.noreply.github.com>2023-07-26 22:02:48 +0200
committerGitHub <noreply@github.com>2023-07-26 22:02:48 +0200
commit4007142b91667ccfcf1573beda4eb9e5ef453352 (patch)
tree560281ea1f477a12f4ad7ea5931512a7f248c22c
parentMerge pull request #11128 from german77/discord (diff)
downloadyuzu-4007142b91667ccfcf1573beda4eb9e5ef453352.tar
yuzu-4007142b91667ccfcf1573beda4eb9e5ef453352.tar.gz
yuzu-4007142b91667ccfcf1573beda4eb9e5ef453352.tar.bz2
yuzu-4007142b91667ccfcf1573beda4eb9e5ef453352.tar.lz
yuzu-4007142b91667ccfcf1573beda4eb9e5ef453352.tar.xz
yuzu-4007142b91667ccfcf1573beda4eb9e5ef453352.tar.zst
yuzu-4007142b91667ccfcf1573beda4eb9e5ef453352.zip
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp
index e04852e01..9c6fbb918 100644
--- a/src/video_core/vulkan_common/vulkan_device.cpp
+++ b/src/video_core/vulkan_common/vulkan_device.cpp
@@ -554,14 +554,6 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
}
sets_per_pool = 64;
- if (extensions.extended_dynamic_state3 && is_amd_driver &&
- properties.properties.driverVersion >= VK_MAKE_API_VERSION(0, 2, 0, 270)) {
- LOG_WARNING(Render_Vulkan,
- "AMD drivers after 23.5.2 have broken extendedDynamicState3ColorBlendEquation");
- features.extended_dynamic_state3.extendedDynamicState3ColorBlendEnable = false;
- features.extended_dynamic_state3.extendedDynamicState3ColorBlendEquation = false;
- dynamic_state3_blending = false;
- }
if (is_amd_driver) {
// AMD drivers need a higher amount of Sets per Pool in certain circumstances like in XC2.
sets_per_pool = 96;